LED Driver 19 Click
LED Driver 19 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : Stefan Ilic
- Date : Apr 2023.
- Type : I2C type
Software Support
Example Description
This library contains API for LED Driver 19 Click driver. The library initializes and defines the I2C bus drivers to write the default configuration for a PWM output value of the out pins.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.LEDDriver19
Example Key Functions
- leddriver19_cfg_setup Config Object Initialization function.
void leddriver19_cfg_setup(leddriver19_cfg_t *cfg)
LED Driver 19 configuration object setup function.
LED Driver 19 Click configuration object.
Definition leddriver19.h:323
- leddriver19_init Initialization function.
err_t leddriver19_init(leddriver19_t *ctx, leddriver19_cfg_t *cfg)
LED Driver 19 initialization function.
LED Driver 19 Click context object.
Definition leddriver19.h:306
- leddriver19_default_cfg Click Default Configuration function.
err_t leddriver19_default_cfg(leddriver19_t *ctx)
LED Driver 19 default configuration function.
- leddriver19_sw_reset LED Driver 19 software reset function.
err_t leddriver19_sw_reset(leddriver19_t *ctx)
LED Driver 19 software reset function.
- leddriver19_enable_channels LED Driver 19 enables channels function.
err_t leddriver19_enable_channels(leddriver19_t *ctx, uint16_t channels_en)
LED Driver 19 enables channels function.
- leddriver19_set_pattern_pwm LED Driver 19 set pattern PWM value function.
err_t leddriver19_set_pattern_pwm(leddriver19_t *ctx, uint8_t pattern_sel, uint8_t channel_sel, float pwm_value)
LED Driver 19 set pattern PWM value function.
Application Init
Initializes the driver and performs default configuration, sets the device in output enabled mode and checks communication by reading device ID.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
uint8_t device_id;
{
log_error( &logger, " Communication error." );
for ( ; ; );
}
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define LEDDRIVER19_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition leddriver19.h:293
#define LEDDRIVER19_REG_DEVICE_ID
LED Driver 19 description register.
Definition leddriver19.h:73
#define LEDDRIVER19_DEVICE_ID
LED Driver 19 description setting.
Definition leddriver19.h:123
err_t leddriver19_read_reg(leddriver19_t *ctx, uint8_t reg, uint8_t *data_out)
LED Driver 19 I2C register reading function.
@ LEDDRIVER19_ERROR
Definition leddriver19.h:341
void application_init(void)
Definition main.c:33
Application Task
This example demonstrates the use of the LED Driver 19 Click board by changing PWM values of all channels from maximum to minimum turning LEDs on and off in the process.
{
{
Delay_ms ( 100 );
}
Delay_ms ( 1000 );
{
Delay_ms ( 100 );
}
Delay_ms ( 1000 );
}
#define LEDDRIVER19_CH_SEL_11
Definition leddriver19.h:171
#define LEDDRIVER19_CH_SEL_0
LED Driver 19 channel enable setting.
Definition leddriver19.h:160
#define LEDDRIVER19_PATSEL_0
LED Driver 19 pattern state setting.
Definition leddriver19.h:146
void application_task(void)
Definition main.c:78
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.